home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 2: Gray Edwards.iso / pc / assets / gray-vehicles&gear.dcr / 00045_button05.ls < prev    next >
Encoding:
Text File  |  2001-07-21  |  459 b   |  21 lines

  1. global checkForSelection
  2.  
  3. on mouseEnter
  4.   set the rect of sprite 51 to the rect of sprite 45
  5. end
  6.  
  7. on mouseLeave
  8.   if checkForSelection = 0 then
  9.     set the loc of sprite 51 to point(-100, -100)
  10.   end if
  11. end
  12.  
  13. on mouseUp
  14.   puppetSound(1, "Clicker")
  15.   set the rect of sprite 51 to the rect of sprite 45
  16.   checkForSelection = 1
  17.   puppetSprite(2, 1)
  18.   set the memberNum of sprite 2 to the number of member "gray05"
  19.   set the loc of sprite 2 to point(400, 240)
  20. end
  21.